home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / ld / testsuite / ld-undefined / undefined.c next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  189 b   |  11 lines

  1. /* This file is used to test the linker's reporting of undefined
  2.    symbols.  */
  3.  
  4. extern int this_function_is_not_defined ();
  5.  
  6. int
  7. function ()
  8. {
  9.   return this_function_is_not_defined ();
  10. }
  11.